home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / newmat.exe / NEWMATAP.HXX < prev    next >
Text File  |  1991-07-30  |  527b  |  23 lines

  1. //$$ newmatap.hxx         definition file for matrix package applications
  2.  
  3. // Copyright (C) 1991: R B Davies and DSIR
  4.  
  5. #ifndef MATRIXAP_LIB
  6. #define MATRIXAP_LIB 0
  7.  
  8. #include "newmat.hxx"
  9.  
  10.  
  11. /**************************** applications *****************************/
  12.  
  13. void HHDecompose(Matrix&, LowerTriangularMatrix&);
  14.  
  15. void HHDecompose(const Matrix&, Matrix&, Matrix&);
  16.  
  17. LowerTriangularMatrix Cholesky(const SymmetricMatrix&);
  18.  
  19. void SVD(const Matrix&, DiagonalMatrix&, Matrix&, Matrix&, BOOL, BOOL);
  20.  
  21.  
  22. #endif
  23.